dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OraclePackage Class / ExecuteProcedure Method / ExecuteProcedure(String,Object[]) Method
The name of the stored procedure or function.
Array of parameters to be passed to the stored procedure.

In This Topic
    ExecuteProcedure(String,Object[]) Method
    In This Topic
    Executes stored procedure or function.
    Syntax
    'Declaration
     
    Public Overloads Sub ExecuteProcedure( _
       ByVal name As String, _
       ByVal ParamArray parameters() As Object _
    ) 
    public void ExecuteProcedure( 
       string name,
       params object[] parameters
    )

    Parameters

    name
    The name of the stored procedure or function.
    parameters
    Array of parameters to be passed to the stored procedure.
    Remarks

    If a procedure with specified name cannot be found in the package an exception is thrown.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also